In [2]:
using DataFrames
df = readtable("../../results/shadowprice.csv")
Out[2]:
In [3]:
include("../../src/lib/graphing.jl")
include("../../src/lib/datastore.jl")
In [11]:
include("../../src/lib/readconfig.jl")
config = readconfig("../configs/standard-1year.yml")
suffix = getsuffix()
Out[11]:
In [12]:
usmap(DataFrame(fips=df[:fips], value=df[:x1]))
Out[12]:
Now we change the objective so it costs \$100/$m^3$ to extract groundwater.
In [13]:
df = readtable("../results/shadowprice-1000.csv")
Out[13]:
In [14]:
usmap(DataFrame(fips=df[:fips], value=df[:x1]))
Out[14]:
In [15]:
df = readtable("../results/shadowprice-1e6.csv")
usmap(DataFrame(fips=df[:fips], value=df[:x1]))
Out[15]:
In [ ]: